home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / LOCALMFC.PAK / LOCALCTL.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  85 lines

  1. // localctl.h : Declaration of the CLocalizeCtrl OLE control class.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CLocalizeCtrl : See localctl.cpp for implementation.
  15.  
  16. class CLocalizeCtrl : public COleControl
  17. {
  18.     DECLARE_DYNCREATE(CLocalizeCtrl)
  19.  
  20. // Constructor
  21. public:
  22.     CLocalizeCtrl();
  23.  
  24. // Overrides
  25.  
  26.     // Drawing function
  27.     virtual void OnDraw(
  28.                 CDC* pdc, const CRect& rcBounds, const CRect& rcInvalid);
  29.  
  30.     // Persistence
  31.     virtual void DoPropExchange(CPropExchange* pPX);
  32.  
  33.     // Reset control state
  34.     virtual void OnResetState();
  35.  
  36.     virtual void OnAmbientPropertyChange(DISPID dispid);
  37.  
  38. // Implementation
  39. protected:
  40.     ~CLocalizeCtrl();
  41.  
  42.     DECLARE_OLECREATE_EX(CLocalizeCtrl) // Class factory and guid
  43.     DECLARE_OLETYPELIB(CLocalizeCtrl)       // GetTypeInfo
  44.     DECLARE_PROPPAGEIDS(CLocalizeCtrl)      // Property page IDs
  45.     DECLARE_OLECTLTYPE(CLocalizeCtrl)        // Type name and misc status
  46.  
  47. // Message maps
  48.     //{{AFX_MSG(CLocalizeCtrl)
  49.     afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  50.     afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  51.     afx_msg void OnCancelMode();
  52.     //}}AFX_MSG
  53.     DECLARE_MESSAGE_MAP()
  54.  
  55. // Dispatch maps
  56.     //{{AFX_DISPATCH(CLocalizeCtrl)
  57.     BOOL m_invert;
  58.     afx_msg void OnInvertChanged();
  59.     //}}AFX_DISPATCH
  60.     DECLARE_DISPATCH_MAP()
  61.  
  62.     afx_msg void AboutBox();
  63.  
  64. // Event maps
  65.     //{{AFX_EVENT(CLocalizeCtrl)
  66.     void FireClick()
  67.         {FireEvent(DISPID_CLICK,EVENT_PARAM(VTS_NONE));}
  68.     //}}AFX_EVENT
  69.     DECLARE_EVENT_MAP()
  70.  
  71. // Dispatch and event IDs
  72. public:
  73.     enum {
  74.     //{{AFX_DISP_ID(CLocalizeCtrl)
  75.     dispidInvert = 1L,
  76.     //}}AFX_DISP_ID
  77.     };
  78.  
  79. protected:
  80.     BOOL m_inverted;
  81.  
  82.     virtual void LoadCaption();
  83.     virtual HINSTANCE GetResourceHandle(LCID lcid);
  84. };
  85.